home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / generic_WEB-INF.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  80 lines

  1. #
  2. # This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(11037);
  14.  script_bugtraq_id(5119);
  15.  script_version("$Revision: 1.8 $");
  16.  name["english"] = "WEB-INF folder accessible";
  17.  name["francais"] = "WEB-INF folder accessible";
  18.  script_name(english:name["english"], francais:name["francais"]);
  19.  
  20.  desc["english"] = " This vulnerability affects the Win32 versions of multiple j2ee servlet
  21. containers / application servers. By making a particular request to the
  22. servers in question it is possible to retrieve files located under
  23. the 'WEB-INF' directory.
  24.  
  25. For example:
  26.  
  27. www.someserver.com/WEB-INF./web.xml
  28.  
  29. or
  30.  
  31. www.someserver.com/WEB-INF./classes/MyServlet.class
  32.  
  33. Solution: 
  34.  
  35. Contact your vendor for the appropriate patch.
  36.  
  37. Risk factor : Medium";
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Tests for WEB-INF folder access";
  42.  
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",
  48.         francais:"Ce script est Copyright (C) 2002 Matt Moore");
  49.  family["english"] = "CGI abuses";
  50.  family["francais"] = "Abus de CGI";
  51.  script_family(english:family["english"], francais:family["francais"]);
  52.  script_dependencie("find_service.nes", "no404.nasl");
  53.  script_require_ports("Services/www", 80);
  54.  exit(0);
  55. }
  56.  
  57. # Check starts here
  58.  
  59. include("http_func.inc");
  60.  
  61. port = get_http_port(default:80);
  62.  
  63. if(get_port_state(port))
  64. {
  65.  req = http_get(item:"/WEB-INF./web.xml", port:port);
  66.  soc = http_open_socket(port);
  67.  if(soc)
  68.  {
  69.  send(socket:soc, data:req);
  70.  r = http_recv(socket:soc);
  71.  http_close_socket(soc);
  72.  confirmed = string("web-app"); 
  73.  confirmed_too = string("?xml");
  74.  if ((confirmed >< r) && (confirmed_too >< r))     
  75.      security_warning(port);
  76.  
  77.  }
  78. }
  79.  
  80.